springboot整合mybatis(详解) 您所在的位置:网站首页 spring boot与spring cloud论文 springboot整合mybatis(详解)

springboot整合mybatis(详解)

#springboot整合mybatis(详解)| 来源: 网络整理| 查看: 265

springboot整合mybatis 1,整体结构

在这里插入图片描述 在这里插入图片描述

2,需要的依赖 org.springframework.boot spring-boot-starter-jdbc org.springframework.boot spring-boot-starter-thymeleaf org.springframework.boot spring-boot-starter-web org.mybatis.spring.boot mybatis-spring-boot-starter 2.1.3 mysql mysql-connector-java org.projectlombok lombok 1.18.12 provided com.alibaba druid 1.2.1 org.springframework.boot spring-boot-starter-test test org.junit.vintage junit-vintage-engine org.xmlunit xmlunit-core org.mybatis mybatis 3.4.6 声明一下,web架构需要thymeleaf支持,而mybatis需要mybatis-spring-boot-starter支持, 3,新建application.yml文件

在resources目录下新建yml文件,用于存放数据库连接需要的一些数据,也可以不建,直接将这些数据放在application.properties文件下,不过格式得转换

spring: datasource: driver-class-name: com.mysql.jdbc.Driver url: jdbc:mysql://localhost:3306/weixin?serverTimezone=GMT%2B8&useSSL=true username: root password: zhs03171812 4,在application.properties文件中加入: #端口号 server.port=8080 #druid数据库连接池 type=com.alibaba.druid.pool.DruidDataSource #清除缓存 spring.thymeleaf.cache=false #配置mapper mybatis.mapper-locations=classpath:mapper/*.xml 5,在pojo下的新建类UserLogin package com.example.weixin_01.pojo; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; @Data @AllArgsConstructor @NoArgsConstructor public class UserLogin { private String username; private String password; } 6,新建数据库,名为weixin,名可以随意,不过要与application.yml文件中的一致

在这里插入图片描述

7,建表,名为userLogin

在这里插入图片描述

8,mapper层

新建UserLoginMapper接口

package com.example.weixin_01.mapper; import com.example.weixin_01.pojo.UserLogin; import org.apache.ibatis.annotations.Mapper; import org.springframework.stereotype.Repository; import java.util.List; @Mapper @Repository public interface UserLoginMapper { //查询 public List queryAll(); //添加数据 public int add(UserLogin userLogin); //根据用户名查询数据 public UserLogin queryByName(String username); } 9,在resources目录下新建mapper目录,并在这个目录下新建UserLoginMapper.xml文件,并在application.properties中注册该组件,前面已经注册 DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> select * from userLogin insert into userLogin values (#{username},#{password}) select * from userLogin where username = #{username} 10,测试

在test文件中,先测试是否能联通数据库,可以自己在数据库中插入一个数据,然后测试时查询全部,看看能否将自己插入的数据查询出来,如果可以,则数据库连接这部分就没问题

package com.example.weixin_01; import com.example.weixin_01.mapper.UserLoginMapper; import com.example.weixin_01.pojo.UserLogin; import org.junit.jupiter.api.Test; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest; import javax.sql.DataSource; import java.sql.Connection; import java.sql.SQLException; import java.util.List; @SpringBootTest class Weixin01ApplicationTests { @Autowired DataSource dataSource; @Test void contextLoads() throws SQLException { System.out.println(dataSource.getClass()); Connection connection = dataSource.getConnection(); System.out.println(connection); //template模板,拿来即用 connection.close(); } @Autowired UserLoginMapper userLoginMapper; @Test public void toTest(){ List userLogins = userLoginMapper.queryAll(); userLogins.forEach(e-> System.out.println(e)); } } 11,services层

在services下新建接口UserLoginServicesI和类UserLoginServicesImpl UserLoginServicesI接口:

package com.example.weixin_01.services; import com.example.weixin_01.pojo.UserLogin; import java.util.List; public interface UserLoginServicesI { //查询 public List queryAll(); //添加数据 public int add(UserLogin userLogin); //根据用户名查询数据 public UserLogin queryByName(String username); }

UserLoginServicesImpl类

package com.example.weixin_01.services; import com.example.weixin_01.mapper.UserLoginMapper; import com.example.weixin_01.pojo.UserLogin; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.util.List; @Service public class UserLoginServicesImpl implements UserLoginServicesI { @Autowired UserLoginMapper userLoginMapper; @Override public List queryAll() { return userLoginMapper.queryAll(); } @Override public int add(UserLogin userLogin) { return userLoginMapper.add(userLogin); } @Override public UserLogin queryByName(String username) { return userLoginMapper.queryByName(username); } } 12,conteoller层

编写MyController类

package com.example.weixin_01.controller; import com.example.weixin_01.pojo.UserLogin; import com.example.weixin_01.services.UserLoginServicesImpl; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.RequestMapping; @Controller public class MyController { @Autowired UserLoginServicesImpl userLoginServicesImpl; @RequestMapping("/toLogin") public String toLogin(){ return "login"; } @RequestMapping("/LoginSuccess") public String LoginSuccess(Model model, UserLogin userLogin){ //先查询看该用户名是否存在 UserLogin userLogin1 = userLoginServicesImpl.queryByName(userLogin.getUsername()); if(userLogin1 != null){ // 如果查询的用户不为空 System.out.println(userLogin1.toString()); return "success"; } else{ //返回到登录页面 model.addAttribute("data","该用户不存在,请先注册"); return "login"; } } //登录界面 @RequestMapping("/toRegister") public String toRegister(){ return "register"; } @RequestMapping("/RegisterSuccess") public String toRegisterSuccess(Model model,UserLogin userLogin){ //将账号密码加入到数据库中 int add = userLoginServicesImpl.add(userLogin); System.out.println("数据插入成功!"); model.addAttribute("data","注册成功,请登录!"); return "login"; } } 13,编写前端页面

将这些页面放在templates下面 随便编写了一下,没有用bootstrap美化一下。。 1,login.html:登录页面

Title 登录界面 用户名: 密码:

2,register.html:注册页面

Title 注册界面 用户名: 密码: 确认密码:

3,success.html:成功界面

Title success 14,运行一下

网页输入:localhost:8080/toLogin 大概就这样。。。 在这里插入图片描述

15,输入用户名和密码

输入用户名和密码,点击登录,如果数据库中存在该账号,则跳转到success页面, 这里就实现了数据的查询,通过username方式查询 在这里插入图片描述 如果账号不存在,则显示用户名不存在,请先注册 在这里插入图片描述

16,注册

点击注册进入注册页面,这里主要实现了数据的增加 在这里插入图片描述 点击注册后 在这里插入图片描述

17,验证

查看数据库中的数据 在这里插入图片描述 张三已经注册成功,当然也可以实现登录了!



【本文地址】

公司简介

联系我们

今日新闻

    推荐新闻

    专题文章
      CopyRight 2018-2019 实验室设备网 版权所有